home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CLASSSRC.PAK / VERSION.RC < prev    next >
Text File  |  1997-05-06  |  2KB  |  47 lines

  1. /*------------------------------------------------------------------------*/
  2. /*  VERSION.RC                                                            */
  3. /*                                                                        */
  4. /*  Copyright (c) 1993, 1996 Borland International                        */
  5. /*  All Rights Reserved                                                   */
  6. /*                                                                        */
  7. /* $Revision:   5.9  $                                                    */
  8. /*------------------------------------------------------------------------*/
  9. #include <ver.h>
  10.  
  11. VS_VERSION_INFO VERSIONINFO
  12.   FILEVERSION     5,0,0,4
  13.   PRODUCTVERSION  5,0,2,0
  14.   FILEFLAGSMASK   VS_FF_DEBUG | VS_FF_PRERELEASE
  15.   FILEFLAGS       VS_FF_PRERELEASE | VS_FF_SPECIALBUILD
  16. #ifndef WIN32
  17.   FILEOS          VOS_DOS_WINDOWS16
  18. #else
  19.   FILEOS          VOS_NT_WINDOWS32
  20. #endif
  21.  
  22.   FILETYPE        VFT_DLL
  23.   FILESUBTYPE     VS_USER_DEFINED
  24.  
  25. BEGIN
  26.   BLOCK "StringFileInfo"
  27.   BEGIN
  28.     BLOCK "040904E4"
  29.     BEGIN
  30.       VALUE "CompanyName", "Borland International\0"
  31.       VALUE "FileDescription", "BIDS Class Library\0"
  32.       VALUE "FileVersion", "5.04\0"
  33.       VALUE "InternalName", "BIDS Class Library\0"
  34.       VALUE "LegalCopyright", "Copyright Borland International 1993, 1996\0"
  35.       VALUE "ProductName", "Borland C++ 5.2\0"
  36.       VALUE "ProductVersion", "$Revision:   5.9  $\0"
  37.     END
  38.  
  39.   END
  40.  
  41.   BLOCK "VarFileInfo"
  42.   BEGIN                               //  Language   |    Translation
  43.     VALUE "Translation", 0x409, 0x4E4 // U.S. English, Windows Multilingual
  44.   END
  45. END
  46.  
  47.